home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Makefile.inc < prev    next >
Makefile  |  2005-03-12  |  2KB  |  77 lines

  1. CXX=gcc
  2.  
  3. #You can set the on what OS is compiling (Linux/Windows)
  4. OS_PORT=LINUX
  5. #OS_PORT=WINDOWS
  6.  
  7. #The version of the FFTW which is used (2 or 3)
  8. #FFTW_VERSION=2
  9. FFTW_VERSION=3
  10.  
  11. #Assembler FLOAT to INT conversions
  12. ASM_F2I=YES
  13. #ASM_F2I=NO
  14.  
  15. # L I N U X   C O N F I G U R A T I O N
  16. #Next line sets the midi input. It can be "ALSA", "OSS" or "NONE".
  17. LINUX_MIDIIN=ALSA
  18. #LINUX_MIDIIN=OSS
  19. #LINUX_MIDIIN=NONE
  20.  
  21. #Next lines sets the audio output (OSS/JACK/PA)
  22. #You may use only one at the time
  23. #If you use "OSS_AND_JACK",,at runtime, zynaddsubfx will run by the default with jack support and 
  24. #it will try OSS if JACK fails. At runtime you can set the OSS by default by command-line
  25. #parameters (run 'zynaddsubfx --help' for help) 
  26.  
  27. #LINUX_AUDIOOUT=OSS_AND_JACK
  28. LINUX_AUDIOOUT=OSS
  29. #LINUX_AUDIOOUT=NONE
  30. #LINUX_AUDIOOUT=JACK
  31. #LINUX_AUDIOOUT=JACK_RT     JACK_RT support is broken
  32. #for PortAudio (PA)
  33. #LINUX_AUDIOOUT=PA
  34.  
  35.  
  36. #Next line sets if the synth is compiled for DSSI plugin (as .so file)
  37. #If this setting is "YES", MIDI in and AUDIOOUT are set automatically to DSSI
  38. LINUX_DSSI=NO
  39. #LINUX_DSSI=YES
  40.  
  41.  
  42. # W I N D O W S   C O N F I G U R A T I O N
  43.  
  44. #Next line sets the midi input
  45. #WINDOWS_MIDIIN=NONE
  46. WINDOWS_MIDIIN=WIN
  47.  
  48. #Next line sets the audio output
  49. #WINDOWS_AUDIOOUT=NONE
  50. WINDOWS_AUDIOOUT=PA
  51.  
  52. #Next line sets if the synth is compiled for VST (as .dll file)
  53. #If this setting is "YES", MIDI in and AUDIOOUT are set automatically to VST
  54. WINDOWS_VST=NO
  55. #WINDOWS_VST=YES
  56.  
  57. #configuration end 
  58.  
  59. ifeq ($(OS_PORT),LINUX)
  60.  MIDIIN=$(LINUX_MIDIIN)
  61.  AUDIOOUT=$(LINUX_AUDIOOUT)
  62.  WINDOWS_VST=NO
  63.     ifeq ($(LINUX_DSSI),YES)
  64.      MIDIIN=DSSI
  65.      AUDIOOUT=DSSI
  66.     endif
  67. else
  68.  MIDIIN=$(WINDOWS_MIDIIN)
  69.  AUDIOOUT=$(WINDOWS_AUDIOOUT)
  70.  LINUX_DSSI=NO
  71.     ifeq ($(WINDOWS_VST),YES)
  72.      MIDIIN=VST
  73.      AUDIOOUT=VST
  74.     endif
  75. endif
  76.  
  77.